home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
RINDEX.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
13 lines
/*
** return pointer to the last occurrence of c in s
*/
rindex(s, c) char *s, c; {
char *rindex;
rindex = 0;
while(*s) {
if(*s == c) rindex = s;
s++;
}
return rindex;
}